Skip to content

Comments

parseJava suit#149

Open
usernamealreadyis wants to merge 25 commits intoGistIcon:5932700/please-turn-on-two-factor-authenticationfrom
xccvv:master
Open

parseJava suit#149
usernamealreadyis wants to merge 25 commits intoGistIcon:5932700/please-turn-on-two-factor-authenticationfrom
xccvv:master

Conversation

@usernamealreadyis
Copy link
Contributor

vj

Integer Arithmetic

1.

6 * ((-2 + 3) * (2 - 1))
=>  6 * (-1 * (2 - 1))
=>  6 * (-1 * 1)  =>  6 * -1  =>  -6

The application that computes this answer would appear as follows:

public class Test
{ public static void main(String[] args)
  { System.out.println(6 * ((-2 + 3) * (2 - 1))); }
}

2.

6 * (-2 + 3) * (2 - 1) 
=>  6 * -1 * (2 - 1)
=>  -6 * (2 - 1)  =>  -6 * 1  => -6

3.

6 * -2 + 3 * (2 - 1) 
=>  -12 + 3 * (2 - 1)
=>  -12 + 3 * 1  =>  -12 + 3  =>  -9

4.

6 * -2 + 3 * 2 - 1 
=>  -12 + 3 * 2 - 1
=>  -12 + 6 - 1  =>  -6 - 1  =>  -7
<html><head></head><body><div class="line-gutter-backdrop"></div><table><tbody><tr><td class="line-number" value="1"></td><td class="line-content"><span class="html-end-of-file"></span></td></tr></tbody></table></body></html>
<iframe name="canvas_iframe" id="canvas_iframe"></iframe>
git://github.com/GistIcon/te.git
From 8f99c91 Mon Sep 17 00:00:00 2001
From: usernamealreadyis <usernamealreadyis@users.noreply.github.com>
Date: Fri, 28 Oct 2016 19:58:17 -0700
Subject: [PATCH 01/23] Update README.md
The following configuration example shows a portion of the configuration file for the VPN and IPSec tunnel described in this chapter.
Apps on GitHub extend and improve existing workflows. People can purchase apps from GitHub Marketplace or browse useful tools and services that integrate with GitHub in Works with GitHub.

If you're building or adding integrations, this documentation will help get you up and running.

For support requests, bug reports, and discussions related to GitHub Apps (not OAuth Apps), use the GitHub Platform Forum. The forum allows you to collaborate with other integrators as well as engineers and product managers from GitHub.

If your request is about OAuth Apps, or if you need to discuss a private concern, please contact support directly
> Reusing Existing Parameters
> 
> All conn and ca sections inherit the parameters defined in a conn %default
> or ca %default section, respectively.
> 
> Parameters defined in other conn or ca sections may be included in a section
> with the also=othersection parameter. The included section may in turn use the
> also keyword to include other sections.
> 
> In versions prior to 5.2.0 each setting could only be defined once, so settings included
> via also could not be changed (the only exception were settings defined in the %default
> section, which could be overwritten once).
> Since 5.2.0 settings from included sections may be changed - the same setting may
> even be defined multiple times in the same section, the last value will be used. It does
> not matter if settings are defined before or after an also statement, settings in the current
> section always override inherited settings. But if multiple also statements are used in the
> same section their order matters (settings from a section included later will override those
> from previously included sections). The new parser also allows to unset a setting by
> assigning no value (e.g. leftcert=), the setting's default value, if any, will apply, which
> may be used to "remove" settings inherited from e.g. the %default section.
ASCII C++ program text, with very long lines, with CRLF, LF line terminators
Type message here and press ENTER to send.
 @@ -6,4 +6,4 @@ Creating a *fork* is producing a personal copy of someone else's project. Forks
Use an SSH key and passphrase from account.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants